home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 37
/
Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso
/
Aminet
/
dev
/
lang
/
sofa.lha
/
sofa
/
smalleiffel
/
lib_show
/
random
/
example1.e
next >
Wrap
Text File
|
2000-03-25
|
2KB
|
56 lines
-- This file is free software, which comes along with SmallEiffel. This
-- software is distributed in the hope that it will be useful, but WITHOUT
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-- FITNESS FOR A PARTICULAR PURPOSE. You can modify it as you want, provided
-- this header is kept unaltered, and a notification of the changes is added.
-- You are allowed to redistribute it and sell it, alone or as a part of
-- another product.
-- Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
-- Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
-- http://SmallEiffel.loria.fr
--
class EXAMPLE1
creation make
feature
make is
local
count, range, column: INTEGER;
do
io.put_string("Using the MIN_STAND random number generator.%N%
%How many numbers ? ");
io.read_integer;
count := io.last_integer;
io.put_string("Range ( > 1) ? ");
io.read_integer;
range := io.last_integer;
from
until
count = 0
loop
random_generator.next;
io.put_integer(random_generator.last_integer(range));
count := count - 1;
if column = 6 then
io.put_string("%N");
column := 0;
else
column := column + 1;
io.put_string("%T");
end;
end;
io.put_string("%N");
end;
feature {NONE}
random_generator: MIN_STAND is
once
!!Result.make;
end;
end -- EXAMPLE1